home *** CD-ROM | disk | FTP | other *** search
/ Gigantic Games 2 / Gigantic Games 2.iso / pc / _a_ / amiboard_v1.0 / install < prev    next >
Text File  |  1994-12-22  |  983b  |  26 lines

  1. (set aspratio
  2.     (askchoice (prompt "Which aspect ratio will your preferred Displaymode use ?")
  3.                (choices ("1:1 (usually interlaced)") ("1:2 (usually non-interlaced"))
  4.                (help "Depending on your choice brushes with 50x50 or 50x25 pixels "
  5.                      "will be copied to AmiBoard.brush")
  6.     )
  7. )
  8.  
  9. (if (= aspratio 0)
  10.     (copyfiles (prompt "Copying Brushes/AmiBoard.brush_50x50 to AmiBoard.brush")
  11.                (help "")
  12.                (source "Brushes/Amiboard.brush_50x50")
  13.                (dest "")
  14.                (newname "AmiBoard.brush")
  15.     )
  16.     (copyfiles (prompt "Copying Brushes/AmiBoard.brush_50x25 to AmiBoard.brush")
  17.                (help "")
  18.                (source "Brushes/Amiboard.brush_50x25")
  19.                (dest "")
  20.                (newname "AmiBoard.brush")
  21.     )
  22. )
  23.  
  24. (message ("Please enter the ScreenMode you will use into the AmiBoard icon tooltype. You can see the available ScreenModes in the Prefs/Screenmode program."))
  25.  
  26.